home *** CD-ROM | disk | FTP | other *** search
/ Electronics Boutique Catalog 1996 Spring / 1996 Electronics Boutique Spring CD-ROM (USA).bin / eb / evolu.dir / 00075_1 sec..ls < prev    next >
Encoding:
Text File  |  1996-03-20  |  279 b   |  20 lines

  1. on enterFrame
  2.   global timerFlag
  3.   if timerFlag = 0 then
  4.     startTimer()
  5.   end if
  6. end
  7.  
  8. on exitFrame
  9.   global timerFlag
  10.   if the timer < (60 * 1) then
  11.     set timerFlag to 1
  12.     go(#loop)
  13.   else
  14.     set timerFlag to 0
  15.     sound stop 1
  16.     sound stop 2
  17.     go(#next)
  18.   end if
  19. end
  20.